
/* copyright 1991-96 UserLand Software, Inc. All Rights Reserved.*/


Verb	MinApp.bringToFront
Syntax	MinApp.bringToFront ()
Parameters	None.
Action	Makes MinApp the frontmost application.
Returns	True if MinApp is running and could be brought to the front, false otherwise.
Examples	MinApp.bringToFront ()
	 false
See Also	MinApp.launch

Verb	MinApp.launch
Syntax	MinApp.launch ()
Parameters	None.
Action	Launches the MinApp application.
Returns	True if MinApp is running, false otherwise.
Examples	MinApp.launch ()
	 true
See Also	MinApp.bringToFront
MinApp.quit

Verb	MinApp.quit
Syntax	MinApp.quit ()
Parameters	None.
Action	Quits the MinApp application.
Returns	True if MinApp was running, false otherwise.
Examples	MinApp.quit ()
	 true
See Also	MinApp.bringToFront

Verb	MinApp.lowerCaseText
Syntax	MinApp.lowerCaseText ()
Parameters	None.
Action	Converts all the text in MinApp's target window to lower case.
Returns	True.
Examples	MinApp.lowerCaseText ()
	 true
Notes	There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
See Also	MinApp.upperCaseText

Verb	MinApp.upperCaseText
Syntax	MinApp.upperCaseText ()
Parameters	None.
Action	Converts all the text in MinApp's target window to upper case.
Returns	True.
Examples	MinApp.upperCaseText ()
	 true
Notes	There is little utility in this verb, it's provided as part of the example of verb documentation and implementation of the Applet Toolkit.
See Also	MinApp.lowerCaseText
